body{
background-color: cornsilk;
}

a[target] {
  background-color: rgb(55, 0, 255);
  text-decoration: none;
  color: white;
}
a[target]:hover{
    background-color: red;
}

a[target ="CULES"] {
  background-color: rgb(255, 0, 149);
  text-decoration: none;
  color: white;
}

[title~="FC"] {
  border: 5px solid rgb(0, 26, 255);
}
img{
    width: 200px;
}

[class|="cora"] {
  background: yellow;
}
[class$="boy"] {
  background: rgb(132, 0, 255);
  color: white;
}

[class*="cion"] {
  background: rgb(0, 255, 200);
}